This can return 0 without it being an error.
Should fix the last issue with bug #142874
exstyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
if (!(exstyle & WS_EX_LAYERED))
- API_CALL (SetWindowLong, (GDK_WINDOW_HWND (window),
- GWL_EXSTYLE,
- exstyle | WS_EX_LAYERED));
+ SetWindowLong (GDK_WINDOW_HWND (window),
+ GWL_EXSTYLE,
+ exstyle | WS_EX_LAYERED);
setLayeredWindowAttributes =
(PFN_SetLayeredWindowAttributes)GetProcAddress (GetModuleHandle ("user32.dll"), "SetLayeredWindowAttributes");